From 92e31dac79b8ac43d633892b415591287fad4f8a Mon Sep 17 00:00:00 2001 From: "emellor@ewan" Date: Tue, 27 Sep 2005 22:08:07 +0100 Subject: [PATCH] Fix final misuse of prettyprint parameters. --- tools/python/xen/xend/PrettyPrint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/python/xen/xend/PrettyPrint.py b/tools/python/xen/xend/PrettyPrint.py index 198ee4a612..2819f02dcf 100644 --- a/tools/python/xen/xend/PrettyPrint.py +++ b/tools/python/xen/xend/PrettyPrint.py @@ -39,9 +39,9 @@ class PrettyItem: print '***PrettyItem>output>', self pass - def prettyprint(self, _, width): + def prettyprint(self, _): print '***PrettyItem>prettyprint>', self - return width + return self.width class PrettyString(PrettyItem): -- 2.30.2